home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Pro 2005 June (DVD)
/
DPPRO0605DVD.iso
/
Install
/
program files
/
Borland
/
BDS
/
3.0
/
Demos
/
Delphi.Net
/
CLR
/
GraphEx
/
GraphEx.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2004-10-22
|
237 b
|
14 lines
program GraphEx;
uses
Borland.Vcl.Forms, GraphWin, BMPDlg;
[STAThread]
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TNewBMPForm, NewBMPForm);
Application.Run;
end.